iT邦幫忙

2022 iThome 鐵人賽

DAY 21
0
AI & Data

了解Data Science系列 第 21

Python pandas part 2

  • 分享至 

  • xImage
  •  

Python pandas

我們接著上一篇文章

更改DataFrame的欄位名稱
方法一

dic = {"col 1": "x1", "col 2": "x2", "col 3": "x3"}
df.rename(dic, axis=1,inplace=True)
print(df)

方法二

df.columns = ['x1', 'x2','x3'] + list(df.columns[3:])
print(df)

output:
https://ithelp.ithome.com.tw/upload/images/20221006/20151606WFJoOVE6Wv.jpg

隨機建立 DataFrame

from pandas import util
df= util.testing.makeDataFrame()
print(df.head())

https://ithelp.ithome.com.tw/upload/images/20221010/20151606vy6CGXRvsU.png


上一篇
Python pandas part 1
下一篇
Python pandas part 3
系列文
了解Data Science30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言